/* 内容 */
.content-left {
	width: 1200px;
	margin: 0 auto;
	height: 42px;
	margin-top: 36px;
	margin-bottom: 40px;
	position: relative;
}

.img1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 55px;
	height: 42px;
}

.list {
	width: 100%;
	height: 100%;
	background: #DAEDF8;
	box-sizing: border-box;
	padding-left: 55px;
}

.list ul {
	width: 100%;
	box-sizing: border-box;
	/* padding: 0px 30px; */
}

.list ul li {
	height: 42px;
	line-height: 0.42rem;
	/* display: flex; */
}

.list ul li a {
	/* flex: 1; */
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #454343;
	line-height: 42px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	box-sizing: border-box;
	/* min-width: 300px; */
	/* max-width: 70px; */
}

.container {
	margin: 0 auto;

	/* marquee_list的宽度需要大于父级的宽度，否则会出现空隙卡顿的现象  */
	max-width: 1500px;

	/* background-color: #f5f5f5; */
	/* padding: 2rem; */
	/* padding-top: 0; */
	overflow: hidden;
}

.marquee {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	line-height: 38px;
}

.marquee .marquee_list {
	display: inline-block;
}

.marquee .marquee_list.rtl {
	/* 动画名 动画时长 线性 重复播放 */
	animation: marquee_rtl 80s linear infinite;
	/* 动画时长请根据marquee_list的长度适当调整（即滚动速度） */
}

.marquee .marquee_list.rtl span a::before {
	content: "";
	position: absolute;
	width: 2px;
	height: 2px;
	background: #000;
	border-radius: 50%;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	/* margin-top: -2px; */
}

.marquee .marquee_list.rtl span a {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: black;
	line-height: 42px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-left: 25px;
	position: relative;
}


/* 滚动方向：从右到左 */
@keyframes marquee_rtl {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(-100%, 0);
	}
}


.rt-one{
	margin-right: 15px;
}